home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / archiver / whatz23.zip / WHATZIP.DOC < prev   
Text File  |  1993-02-20  |  3KB  |  89 lines

  1. ****************************************************************************
  2.  
  3.                   WHATZIP
  4.                                          
  5.                 Version 2/20/93                     
  6.                                          
  7.                  Copyright (c) 1993 John Pulliam             
  8.                                          
  9.                     For IBM Computers and Compatibles             
  10.                                          
  11. ****************************************************************************
  12.                                          
  13.     This program determines and displays what version(s) of ZIP program
  14.     was used to create the ZIP file(s) specified on the command line.
  15.  
  16.     This program may only be used with DOS 2.0 or higher.
  17.  
  18.     This program is released to the Public Domain for non-commercial use
  19.     and may be used for commercial use with permission of the author.
  20.  
  21.     PKZIP is a Copyright of PKWARE, Inc.
  22.  
  23.  
  24.     WHATZIP was written because I had converted some of the ZIP files
  25.     on my hard disks to version 2.0 but not all of them.  It became
  26.     time consuming to check every ZIP file in every directory to see
  27.     if it had or had not been converted.
  28.  
  29.     WHATZIP simplifies the process greatly.
  30.  
  31.  
  32.     The calling method is:
  33.  
  34.        "WHATZIP[/n] filespec1 filespec2 ... filespecN"
  35.  
  36.         Where filespec1 ... filespecN are the names of ZIP files.
  37.  
  38.           An extension may be appended if desired.
  39.             ".ZIP" is assumed if the extension is not included.
  40.  
  41.           Drive(s) and directory(s) are usually included in filespecs.
  42.  
  43.           Wildcards * and ? may be used in the filespecs where DOS
  44.           will accept them.
  45.  
  46.           A '/n' specifies that only files created with PKZIP n.x
  47.           will be displayed.
  48.           Values of 0 - 4 may be used for n.
  49.           (This allows for future versions.)
  50.           The default is to display ALL versions, "n = 0".
  51.  
  52.           The '/n' may be placed any where on the command line.
  53.           One '/n' argument may be on the command line for each
  54.           filspec on the command line.  They will be assumed to
  55.           be in the same sequence as the filespecs.
  56.  
  57.  
  58.     Informative and error messages are displayed, depending on
  59.     circumstances.
  60.  
  61.     An ERRORLEVEL of 0  is returned if NO error occurs.
  62.     An ERRORLEVEL of 1+ is returned if an error occurs.
  63.  
  64.  
  65.     Example:
  66.           "WHATZIP D:*"
  67.              Will display all files ending with a .ZIP
  68.              extension.
  69.  
  70.           "WHATZIP /2 D:\DLOADS\*.ZIP /1 D:*.Q*"
  71.              Will display all zip files made via version 2.x
  72.              in directory D:\DLOADS\ and all files ending with
  73.              a .Qxx extension made by zip version 1.n in D.
  74.  
  75.  
  76.     WHATZIP is written entirely in Microsoft Assembly Language (MASM).
  77.  
  78.  
  79.     This program is made available for use with NO liability of any
  80.     kind assumed by    the author.
  81.  
  82.         Written by:
  83.         John R. Pulliam
  84.         1324 Cypress Bend Circle
  85.         Melbourne, Florida  32934
  86.         (407) 255-7690
  87.  
  88. ****************************************************************************
  89.